home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- set -e
-
- PYTHON_DEFAULT=$(pyversions --default)
-
- this="python-gst0.10"
-
- pc_files() {
- runtime="$1"
-
- dpkg -L "$this" | sed -n -e "s#^/usr/lib/pkgconfig/$runtime/##p"
- }
-
- if [ "$1" = "configure" ]; then
- cd /usr/lib/pkgconfig
-
- for f in $(pc_files $PYTHON_DEFAULT); do
- ln -f -s "$PYTHON_DEFAULT/$f"
- done
- fi
-
- # Automatically added by dh_pycentral
- if which pycentral >/dev/null 2>&1; then
- pycentral pkginstall python-gst0.10
- fi
- # End automatically added section
-
-
-